home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / LANG / C / LIB / LIBGPP / LIBSTDC / !libstdc / std / h / stddef < prev    next >
Text File  |  1995-07-26  |  410b  |  26 lines

  1. // The -*- C++ -*- standard definitions header.
  2. // This file is part of the GNU ANSI C++ Library.
  3.  
  4. #ifndef __STDDEF__
  5. #define __STDDEF__
  6.  
  7. #ifdef __GNUG__
  8. #pragma interface "std/stddef.h"
  9. #endif
  10.  
  11. #include <_G_config.h>
  12. #include <std/cstddef.h>
  13.  
  14. extern "C++" {
  15. const size_t NPOS = (size_t)(-1);
  16. typedef void fvoid_t();
  17.  
  18. #ifndef _WINT_T
  19. #define _WINT_T
  20. typedef _G_wint_t wint_t;
  21. #endif
  22.  
  23. } // extern "C++"
  24.  
  25. #endif
  26.